home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_bubble.ifx < prev    next >
Text File  |  2004-08-03  |  1KB  |  46 lines

  1. /*
  2.  * $VER: EOT_Bubble.ifx 2.6 (24.04.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  *
  5.  * Inputs:
  6.  *    Word(Arg(1),1) = Frame number (1 - N)
  7.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  8.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  9.  *    Word(Arg(1),4) = Sequence number (?)
  10.  *    Word(Arg(1),5) = Total number of frames (N)
  11.  *
  12.  * Returns:
  13.  *    0 if successful, non-zero on failure
  14.  *
  15.  */
  16.  
  17. OPTIONS RESULTS
  18.  
  19. framenum = Word(Arg(1),1)
  20. mainname = Word(Arg(1),2)
  21. swapname = Word(Arg(1),3)
  22. seqnum   = Word(Arg(1),4)
  23. framemax = Word(Arg(1),5)
  24.  
  25. base  = 'Autofx_Bubble_'
  26.  
  27.  
  28. count  = GETCLIP(base||'Count')
  29. minr   = GETCLIP(base||'MinR')
  30. maxr   = GETCLIP(base||'MaxR')
  31. rand   = GETCLIP(base||'Rand')
  32. move   = GETCLIP(base||'Move')
  33. orient = GETCLIP(base||'Orient')
  34.  
  35. IF count  = "" THEN count = 10
  36. IF minr   = "" THEN minr = 40
  37. IF maxr   = "" THEN maxr = 75
  38. IF rand   = "" THEN rand = 11248
  39. IF move   = "" THEN move = 5
  40. IF orient = "" THEN orient = 0
  41.  
  42. Hook Bubble framenum count minr maxr 15 15 rand 0 '-'move AntiAlias Specular
  43.  
  44. EXIT rc
  45.  
  46.